Base Command
abstract class BaseCommand(val code: String, val parameters: List<String> = emptyList(), val sendFeedback: Boolean = true, val ledFeedback: Boolean? = null, val buzzerFeedback: Boolean? = null, val vibrationFeedback: Boolean? = null)
Abstract class representing a base command for the scanner.
Inheritors
Constructors
Properties
Link copied to clipboard
A flag to indicate if buzzer feedback is enabled.
Link copied to clipboard
A flag to indicate if LED feedback is enabled.
Link copied to clipboard
Optional parameters to be included with the command.
Link copied to clipboard
A flag to indicate if feedback should be sent.
Link copied to clipboard
A flag to indicate if vibration feedback is enabled.